.nav-item {
    position: relative;
    text-align: center;
}

.contador-carrito {
    position: absolute;
    top: 8px;
    right: 12px;
    background-color: #e5004f;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7em;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

.header-lines {
    width: 13%;
    display: flex;
    padding: 0px;
    gap: 9px;
}

.line-item {
    width: 9px;
    height: 56px;
    background-color: rgb(258, 255, 255);
    flex-grow: 0;
}

/* ------------------------------
   BARRA DE NAVEGACIÓN PRINCIPAL
------------------------------ */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white; /* Fondo gris claro */
    padding: 0.1rem 0.4rem;
    border-bottom: 2px solid #ffffff;
    position: static;
    top: 85px; 
    z-index: 1000;
    margin-top: 2px; 

    /* BORDE GRIS Y ESQUINAS REDONDEADAS */
    border: 1px solid #dddddd;
    border-radius: 16px; /* Aquí está el redondeo */
}

.nav-item {
    text-align: center;
}

.nav-btn {
    width: clamp(4.1rem, 13vw, 7.5rem);
    height: clamp(3.7rem, 13vw, 6.5rem);
    object-fit: contain;
    cursor: pointer;
}

.nav-item p {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    margin-top: clamp(0.3rem, 1vw, 0.5rem);
}



.titulo-seccion {
            padding: 10px 0px 20px;
            text-align: center;
        }

        .titulo-seccion h2 {
            font-size: 17px;
            color: #1A1A1A;
            margin-bottom: 1px;
            font-weight: 600;
            line-height: 1.2;

        }

        .subtitulo-seccion {
            font-size: 13px;
            color: #757575;
            margin: 0;
        }